From: Dan Nicolaescu Date: Fri, 28 Oct 2011 14:34:06 +0000 (-0600) Subject: * src/window.c (make_window): Initialize phys_cursor_on_p. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~1828 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=769e2bbce4bca72dfd57ff2c1ce8c307a52795b3;p=emacs.git * src/window.c (make_window): Initialize phys_cursor_on_p. --- diff --git a/src/ChangeLog b/src/ChangeLog index 33c2d5e0587..92acd640747 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2011-10-28 Dan Nicolaescu + + * window.c (make_window): Initialize phys_cursor_on_p. + 2011-10-28 Stefan Monnier * lisp.h (struct Lisp_Symbol): Update comments. diff --git a/src/window.c b/src/window.c index 0c35b913789..38f16c91f34 100644 --- a/src/window.c +++ b/src/window.c @@ -3320,6 +3320,7 @@ make_window (void) memset (&w->phys_cursor, 0, sizeof (w->phys_cursor)); w->phys_cursor_type = -1; w->phys_cursor_width = -1; + w->phys_cursor_on_p = 0; w->last_cursor_off_p = w->cursor_off_p = 0; w->must_be_updated_p = 0; w->pseudo_window_p = 0;